1   package com.iluwatar;
2   
3   public class HolyWaterPotion implements Potion {
4   
5   	@Override
6   	public void drink() {
7   		System.out.println("You feel blessed. (Potion="
8   				+ System.identityHashCode(this) + ")");
9   	}
10  
11  }